
This resource address updates the configuration properties of the specified alert trigger for the specified database.
| URL Parameters | |
|---|---|
| format | The format of the posted data. Can be either
json or xml (default). This value overrides the Accept header if
both are present. |
Upon success, MarkLogic Server returns a status code 200 (OK). If the payload is malformed or the trigger does not exist, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-admin role, or the following
privilege: http://marklogic.com/xdmp/privileges/manage-admin
The properties that can be modified are listed below.
idnamedescriptioneventThis is a complex structure with the following children:
data-eventThis is a complex structure with the following children:
document-scopeThis is a complex structure with the following children:
uricollection-scopeThis is a complex structure with the following children:
uridirectory-scopeThis is a complex structure with the following children:
uridepthdocument-contentThis is a complex structure with the following children:
update-kindany-property-contentany-custom-property-contentproperty-contentThis is a complex structure with the following children:
property-nameThis is a complex structure with the following children:
namespace-urilocalnamewhendatabase-online-eventThis is a complex structure with the following children:
useruser-iduser-namemodulemodule-dbmodule-rootenabledrecursivetask-prioritypermissionsThis is a complex structure with the following children:
permissionThis is a complex structure with the following children:
role-namecapability
curl -X PUT --digest -u admin:admin -H "Content-type: application/json" \
-d '{
"description": "New Description"
}' \
http://localhost:8002/manage/v2/databases/myTriggers/triggers/my-trigger/properties
==> Updates the "description" of the "my-trigger" alert trigger.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.